home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 117 (1989-11-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 117 (1989-11-15)(Ossowski, Stefan)(DE)(PD).adf / LeftyMouse / hndstub.asm < prev    next >
Assembly Source File  |  1989-08-20  |  274b  |  10 lines

  1.         xdef    _hndstub    ;this is hndstub()
  2.         xref    _hndcode    ;will call hndcode(InputEvent,Data)
  3.  
  4. _hndstub    movem.l    a0/a1,-(a7)    ;stack InputEvent & Data ptrs
  5.         jsr    _hndcode    ;jump to actual input handler
  6.         addq.l    #8,a7        ;de-stack pointers
  7.         rts            ;return (return value is in D0)
  8.  
  9.         end
  10.